.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content.open {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-open .faq-arrow {
    transform: rotate(180deg);
}

.faq-item {
    border-radius: 0.5rem;
    overflow: hidden;
}

.language-selector {
    position: relative;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1f2937;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    z-index: 100;
    display: none;
}

.language-dropdown.open {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.language-option:hover {
    background-color: #374151;
}

.language-flag {
    width: 20px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}